home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility3 / rx.zip / MAKEFILE < prev    next >
Text File  |  1991-09-30  |  400b  |  17 lines

  1. # If working with TC2.0: I was often in trouble with
  2. # register optimization (-r), so I don't use it anymore
  3.  
  4. CC=tcc
  5. CFLAGS=-ml -r-
  6.  
  7. # Uncomment the next CC-/CFLAGS-lines if working with MSC
  8. # packing structures (-Zp) is necessary!
  9. # Note: I tried it, but I haven't fully tested it with MSC (it so slow...)
  10.  
  11. # CC=cl
  12. # CFLAGS=-AL -Zp
  13.  
  14. rx.exe : rx.c
  15.   $(CC) $(CFLAGS) rx.c
  16.  
  17. # that's it